home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snpd9611.zip / MAKEFILE.BCC < prev    next >
Text File  |  1996-11-24  |  296b  |  19 lines

  1. # +++Date last modified: 03-Oct-1996
  2.  
  3. # Makefile for Borland C++ for OS/2 1.0
  4.  
  5. all: qmenup.exe
  6.  
  7. COPTS=-O2
  8.  
  9. .c.obj:
  10.   bcc $(COPTS) -w -c $<
  11.  
  12. objs=qmenu.obj    \
  13.      vidmgr.obj   \
  14.      vmgros2.obj  \
  15.      vioimage.obj
  16.  
  17. qmenup.exe: $(objs)
  18.   bcc $(COPTS) -w -eqmenup.exe $(objs)
  19.